From: Mukesh Rathor Date: Wed, 13 Nov 2013 08:41:12 +0000 (+0100) Subject: pvh: restrict tsc_mode to NEVER_EMULATE for now X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~5961 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=a51243376b4fe6bfed7e47ed2cd77258b33788ea;p=xen.git pvh: restrict tsc_mode to NEVER_EMULATE for now The reason given for this restriction in the first place, given in one of the comments checking for PVH requirements, had to do with additional infrastructure required to allow PV RDTSC emulation for PVH guests. Since we don't use the PV emulation path at all anymore, we may be able to remove this restriction. Experiments show that pvh will boot without apparent issues in "default", "native", and "native_paravirt" mode, but not in "always_emulate" mode. We'll leave this restriction in until we can sort out what's going on. Signed-off-by: Mukesh Rathor Signed-off-by: George Dunlap Acked-by: Tim Deegan Acked-by: Keir Fraser Acked-by: Eddie Dong --- diff --git a/xen/arch/x86/time.c b/xen/arch/x86/time.c index 21224f0ee8..62c34431ec 100644 --- a/xen/arch/x86/time.c +++ b/xen/arch/x86/time.c @@ -1827,6 +1827,33 @@ void tsc_set_info(struct domain *d, d->arch.vtsc = 0; return; } + if ( is_pvh_domain(d) ) + { + /* + * PVH fixme: support more tsc modes. + * + * NB: The reason this is disabled here appears to be with + * additional support required to do the PV RDTSC emulation. + * Since we're no longer taking the PV emulation path for + * anything, we may be able to remove this restriction. + * + * pvhfixme: Experiments show that "default" works for PVH, + * but "always_emulate" does not for some reason. Figure out + * why. + */ + switch ( tsc_mode ) + { + case TSC_MODE_NEVER_EMULATE: + break; + default: + printk(XENLOG_WARNING + "PVH currently does not support tsc emulation. Setting timer_mode = never_emulate\n"); + /* FALLTHRU */ + case TSC_MODE_DEFAULT: + tsc_mode = TSC_MODE_NEVER_EMULATE; + break; + } + } switch ( d->arch.tsc_mode = tsc_mode ) {